home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hot Spot's Soft Fantasy Tour 1
/
Hot Spot's Soft Fantasy Tour 1.iso
/
viewers
/
dos
/
qpeg
/
install.dat
/
DRVSRC
/
GENOA.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Assembly Source File
|
1994-05-01
|
544 b
|
34 lines
;
; QPEG video driver
; for Genoa 6100, 6200, 6300, 6400, 6600
;
.286
Code Segment Para 'Code'
Assume cs:Code
Org 100h
Procs dw Bank,Init,Exit,0
Bank: mov dl,al
shl al,3
or al,dl
or al,40h
push ax
mov al,06h
mov dx,03c4h
out dx,al
pop ax
inc dx
out dx,al
retf
Init: retf
Exit: retf
Code Ends
End Procs
; End of source.